跳到主要内容

获取带单者历史带单订单

请求类型: GET

接口路径: /v1/copy-trade-order/public/copy-trade/order/leader-order-history

限流规则

2次/秒/IP

请求参数

参数名类型是否必填默认值描述
leaderAccountIdnumber带单账户ID
symbolstring交易对,例如 btc_usdt。不填则查询全部
directionstringNEXT查询方向。PREV - 上一页, NEXT - 下一页
limitnumber10每页数量 (1-100)
idobject起始ID,例如 6216559590087220004

响应示例

响应
{
"rc": 0,
"mc": "string",
"ma": [{}],
"result": [
{
"id": "string", // ID
"orderId": "string", // 订单ID
"symbol": "string", // 交易对
"buySize": 0, // 买入数量
"buyTime": 0, // 买入时间
"buyPrice": 0, // 买入价格
"sellSize": 0, // 卖出数量
"sellTime": 0, // 卖出时间
"sellPrice": 0, // 卖出价格
"profit": 0, // 盈亏
"profitRate": 0, // 盈亏率
"triggerProfitPrice": 0, // 止盈价格
"triggerStopPrice": 0, // 止损价格
"followCount": 0 // 跟单人数
}
]
}